iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 5
0
Modern Web

PHP入門系列 第 5

Day05-PHP基本語法(1)

  • 分享至 

  • xImage
  •  

PHP加入Html

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <?php echo "this is me" ?>
</body>
</html>

輸出結果:
this is me

PHP中加入Html標籤

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
<?php 
echo 'this is me <br>';
echo '<a href="http://google.com">enter google</a><br>';
echo '<b>this is me</b><br>';
?>
</body>
</html>

加入<br>空行、<a></a>超連結、<b></b>粗體標籤。

輸出結果:
this is me
enter google
this is me

PHP註解

註解:
在寫程式時為程式適時地加入註解,除了可以幫助理解,更可以讓他人讀懂,特別是一群人一起完成的程式,是一個可以培養的好習慣。

1.單行註解:

<?php //註解 ?>

2.多行註解:

<?php 
 /*註解1
    註解2 
    註解3
    */
 ?>

HTML註解

單行、多行註解:

<html>
 <!--註解-->
</html>

CSS註解

單行、多行註解:

<style>
 <!--註解-->
</style>

上一篇
Day04-網頁基本結構
下一篇
Day06-PHP基本語法 (2)
系列文
PHP入門30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言